home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscClassDecoderPalette / Makefile.preamble < prev    next >
Makefile  |  1994-12-12  |  4KB  |  96 lines

  1. #    Pallet With Library Preamble
  2. #    this is 3.1+ specific, and will enable the building of FAT palletes!
  3.  
  4. LIBRARYNAME = lib$(NAME).a
  5. LIBOFILES = MiscClassDecoder.subproj/MiscClassDecoder.o
  6.  
  7. ###############################################################################
  8. #  NeXT Makefile.preamble Template
  9. #  Copyright 1993, NeXT Computer, Inc.
  10. #
  11. #  This Makefile is used for configuring the standard app makefiles associated
  12. #  with ProjectBuilder.  
  13. #  
  14. #  Use this template to set attributes for a project, sub-project, bundle, or
  15. #  palette.  Each node in the project's tree of sub-projects and bundles 
  16. #  should have it's own Makefile.preamble and Makefile.postamble.
  17. #
  18. ###############################################################################
  19. ## Configure the flags passed to $(CC) here.  These flags will also be 
  20. ## inherited by all nested sub-projects and bundles.  Put your -I, -D, -U, and
  21. ## -L flags here.  To change the default flags that get passed to ${CC} 
  22. ## (e.g. change -O to -O2), see Makefile.postamble.
  23.  
  24. # Flags passed to compiler (in addition to -g, -O, etc)
  25. OTHER_CFLAGS = -IMiscPalette.subproj -I. -I../../Headers
  26. # Flags passed to ld (in addition to -ObjC, etc.)
  27. OTHER_LDFLAGS =    
  28.  
  29. ## Configure what is linked in at each level here.  Libraries are only used in
  30. ## the final 'app' linking step.  Final 'app' linking is only done via the
  31. ## 'app', 'debug', and 'profile' targets when they are invoked for
  32. ## the top-level app.
  33.  
  34. # Additional relocatables to be linked in at this level
  35. OTHER_OFILES = 
  36. # Additional libs to link apps against ('app' target)
  37. OTHER_LIBS = 
  38. # Additional libs to link apps against ('debug' target)
  39. OTHER_DEBUG_LIBS = 
  40. # Additional libs to link apps against ('profile' target)
  41. OTHER_PROF_LIBS = 
  42.  
  43. # More 'app' libraries when $(JAPANESE) = "YES"
  44. OTHER_JAPANESE_LIBS = 
  45. # More 'debug' libraries when $(JAPANESE) = "YES"
  46. OTHER_JAPANESE_DEBUG_LIBS = 
  47. # More 'profile' libs when $(JAPANESE) = "YES"
  48. OTHER_JAPANESE_PROF_LIBS = 
  49.  
  50. ## Configure how things get built here.  Additional dependencies, sourcefiles, 
  51. ## derived files, and build order should be specified here.
  52.  
  53. # Other dependencies of this project
  54. OTHER_PRODUCT_DEPENDS =    $(LIBRARYNAME)
  55. # Built *before* building subprojects/bundles
  56. OTHER_INITIAL_TARGETS = 
  57. # Other source files maintained by .pre/postamble
  58. OTHER_SOURCEFILES = 
  59. # Additional files to be removed by `make clean' 
  60. OTHER_GARBAGE = $(LIBRARYNAME)
  61. # Precompiled headers to be built before any compilation occurs (e.g., draw.p)
  62. PRECOMPS = 
  63.  
  64. # Targets to be built before subprojects & bundles
  65. OTHER_INITIAL_TARGETS =    
  66.  
  67. # A virtual root directory (other than /) to be prepended to the $(INSTALLDIR) 
  68. # passed from ProjectBuilder.
  69. DSTROOT = 
  70. INSTALLDIR = /LocalDeveloper/Palettes
  71.  
  72.  
  73. ## Add more obscure source files here to cause them to be automatically 
  74. ## processed by the appropriate tool.  Note that these files should also be
  75. ## added to "Supporting Files" in ProjectBuilder.  The desired .o files that 
  76. ## result from these files should also be added to OTHER_OFILES above so they
  77. ## will be linked in.
  78.  
  79. # .msg files that should have msgwrap run on them
  80. MSGFILES = 
  81. # .defs files that should have mig run on them
  82. DEFSFILES = 
  83. # .mig files (no .defs files) that should have mig run on them
  84. MIGFILES = 
  85.  
  86. ## Add additional Help directories here (add them to the project as "Other 
  87. ## Resources" in Project Builder) so that they will be compressed into .store
  88. ## files and copied into the app wrapper.  If the help directories themselves
  89. ## need to also be in the app wrapper, then a cp command will need to be added
  90. ## in an after_install target.
  91. OTHER_HELP_DIRS = 
  92.  
  93. # Don't add more rules here unless you want the first one to be the default
  94. # target for make!  Put all your targets in Makefile.postamble.
  95.  
  96.